I searched around looking for 'Threading101' info as it pertains to the Kflop environment. I was wondering if multiple 0ne-time functions could share the same thread number. Wondering if I 'should' use the same thread number to maximize execution speed. Should thread numbers be used sequentially ? etc. It took me hours of searching to find this little gem, I'll re-post it here in case others might search for it as I did. It's from here where Tom answered a question:
http://tech.groups.yahoo.com/group/DynoMotion/message/6094
and it really REALLY helped me get my head around it as a newbie. Thank you Tom!
---------------------
Really the only thing that you need to understand is that two programs that ever need to be running at the same time need to be assigned to different threads. The KFLOP system Thread runs all the time in Thread #0. So Thread #0 may never be used. In a typical KMotionCNC system the Init.c program is usually assigned to thread #1 and runs forever. If other UserButtons (or MCodes) run C Programs that do something and terminate (Exec/Wait option) then these might all be assigned to use Thread#2. If your programs run for a longer time where a 3rd or 4th program might be Launched so they all overlap in time, then they must all be assigned to different Threads.
All Threads are killed (stop executing) when the Big Red Stop Button is pushed - except for thread #7. So use thread #7 for anything you wish to continue to run after a Stop.
---------------------
I suspect other newbs like me would benefit from having something like this tacked onto the multitasking help page. Possibly flashing. :-) I did spend a lot of time finding this. I searched here, CNCZone, the web, even searched the 226 page xilinx data sheet. I also learned a lot about threading steel in my searching. LOL This deserves a beer. :-)
--- In DynoMotion@yahoogroups.com, "bluetoad559" wrote:
>
>
> I need to stop and learn more about threading, I'm wondering if I'm doing something I shouldn't. I'm running the C program from a user button set to thread 5.
>